The output from the trace methods appears in Project Builder's launch panel.
You use the trace methods wherever you want to turn on tracing. Usually, you do this in the init method (or constructor) of a component or the application:
// Objective-C
- init {
[super init];
[[self application] traceAssignments:YES];
[[self application] traceScriptedMessages:YES];
return self;
}
// Java
public Main() {
super();
this.application.traceAssignments(true);
this.application.traceScriptedMessages(true);
.
.
.
}
Table of Contents
Next Section